HEX
Server: Apache/2.4.68 (Debian)
System: Linux as-cs-widget-demo-us-central1 6.1.0-44-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
User: root (0)
PHP: 8.2.32
Disabled: NONE
Upload Files
File: /var/www/kevin-demo/wp-content/plugins/wpforms/pro/templates/admin/payments/single/layout-rows.php
<?php
/**
 * Single payment entry layout rows template.
 *
 * @since 1.9.3
 *
 * @var array $field Field data.
 * @var array $rows Rows data.
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

$label_hide = $field['label_hide'] ?? false;

?>

<div class="wpforms-payment-entry-layout-block">
	<?php if ( ! $label_hide ) : ?>
		<div class="wpforms-payment-entry-field-name">
			<?php echo esc_html( $field['label'] ); ?>
		</div>
	<?php endif; ?>

	<?php
		foreach ( $rows as $key => $columns ) {
			echo wpforms_render( // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
				'admin/payments/single/row-items',
				[
					'items' => $columns,
					'type'  => $field['type'],
				],
				true
			);
		}
	?>
</div>